All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.Notification

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.Notification

public class Notification
extends NativeObject
This class wraps the Objective-C class NSNotification.


Constructor Index

 o Notification()
This default constructor is equivalent to Objective-C's [[NSNotification alloc] init].
 o Notification(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o name()
A wrapper for the - name Objective-C instance method.
 o notificationWithNameAndObject(String, Object)
A wrapper for the + notificationWithName:object: Objective-C class method.
 o notificationWithNameAndObjectAndUserInfo(String, Object, Dictionary)
A wrapper for the + notificationWithName:object:userInfo: Objective-C class method.
 o object()
A wrapper for the - object Objective-C instance method.
 o userInfo()
A wrapper for the - userInfo Objective-C instance method.

Constructors

 o Notification
 protected Notification(boolean shouldAllocate,
                        int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o Notification
 public Notification()
This default constructor is equivalent to Objective-C's [[NSNotification alloc] init].

Methods

 o name
 public native String name()
A wrapper for the - name Objective-C instance method.

 o object
 public native Object object()
A wrapper for the - object Objective-C instance method.

 o userInfo
 public native Dictionary userInfo()
A wrapper for the - userInfo Objective-C instance method.

 o notificationWithNameAndObject
 public static native Object notificationWithNameAndObject(String aName,
                                                           Object anObject)
A wrapper for the + notificationWithName:object: Objective-C class method.

 o notificationWithNameAndObjectAndUserInfo
 public static native Object notificationWithNameAndObjectAndUserInfo(String aName,
                                                                      Object anObject,
                                                                      Dictionary aUserInfo)
A wrapper for the + notificationWithName:object:userInfo: Objective-C class method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index